| C# |
|---|
| public Void AddText(String text) |
| C# |
|---|
// Defaults: IndentCharCount = 2, LineLimit = 80, WrapEnabled = false. var tb = new TextBuilder(); // Example Method: // Adds text without modification. tb.AddText("This is some appended text."); var result = tb.ToString(); // result: // This is some appended text. |